home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000106_fdc@columbia.edu_Tue May 27 12:50:52 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  93 lines

  1. Article: 14331 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: server mode help needed
  6. Date: 27 May 2003 12:50:44 -0400
  7. Organization: Columbia University
  8. Lines: 76
  9. Message-ID: <bb0514$e4$1@watsol.cc.columbia.edu>
  10. References: <20030527123809.04226.00000370@mb-m15.aol.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1054054245 17811 128.59.39.139 (27 May 2003 16:50:45 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 27 May 2003 16:50:45 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14331
  16.  
  17. In article <20030527123809.04226.00000370@mb-m15.aol.com>,
  18. Greg180 <greg180@aol.com> wrote:
  19. : Windows 98/Kermit 95 2.0.1
  20. : The script show below has worked well for some time.  For unknown reasons
  21. : we have recently found our server machine in an unbroken cycle as
  22. : displayed on the server display screen.
  23. You never know, it could be a deliberate denial of service attack.
  24.  
  25. : Bad Sequence Number
  26. : Check Sum Error
  27. :    the above appearing several time in sequence then followed by
  28. : FAILURE: Too many retries
  29. : This sequence continues until we Ctrl\C out of Kermit.
  30. : I have been able to create this same scenario by starting the script and
  31. : then placing a voice call to the host, and hanging up the voice call after
  32. : the modem starts it handshake.
  33. : During the duration, the line to the modem remains busy.
  34. : I am reading the manual looking for a way to trap such errors, or a server
  35. : setting which will force an exit from server mode.
  36. : Any suggestions as to diagnostic work or an appropiate fix via script will
  37. : be very much welcomed.
  38. : echo ----------------------------\013
  39. : echo -   elcomm.ksx started     -\013
  40. : echo ----------------------------\013
  41. : set speed 115200
  42. You don't need to put \013 at the end of an ECHO string.  However, when
  43. a command ends with "-" but you don't want it to act as a continuation
  44. character, you have to do something to prevent it.  For ECHO the normal
  45. thing is:
  46.  
  47.   echo {-------}
  48.  
  49. or (in more recent Kermit versions):
  50.  
  51.   echo "-------"
  52.  
  53. : ; modem change
  54. : set flow rts/cts
  55. : set modem speed-matching off
  56. : set speed 14
  57. "14" is short for 14400, which is a modem-to-modem speed, not a serial-port
  58. speed.  But "set speed" sets the serial port speed.  Instead I think you
  59. should be doing something like this:
  60.  
  61.   set modem type xxx             ; Specify the type of modem you have
  62.   set port com1
  63.   set flow rts/cts
  64.   set speed 57600
  65.   set modem speed-matching off   ; <-- this is the default anyway
  66.  
  67. (Note: SET MODEM TYPE ? shows the modem types you can choose.)
  68.  
  69. Or, if you are using a TAPI device (Control Panel -> Modems name):
  70.  
  71.   set port tapi
  72.   set flow rts/cts
  73.   set speed 57600
  74.   set modem speed-matching off
  75.  
  76. The rest looks OK.
  77.  
  78. I suspect you have a speed mismatch or a noisy connection.  Anyway, try
  79. the suggestions above, which would help in that case, and then get back
  80. to kermit-support@columbia.edu if you continue to have trouble.
  81.  
  82. - Frank
  83.